home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
pc
/
PPC1B3AA.ZIP
/
MOVETO_.PPS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-07-30
|
231 b
|
16 lines
; Demonstration of the MoveTo procedure (library MOVETO.LIB)
#ppe
#libpath ..\..\lib
#use moveto
Int X, Y
While (Inkey() = "") Do
Y = Random(22)+1
X = Random(78)+1
MoveTo(X, Y)
Print "X"
Endwhile